File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export type {
55 SupportedParsingSpecification ,
66} from "./frame-parsers/types" ;
77
8- export type FrameVersion = "vNext" | `${ number } -${ number } -${ number } ` ;
8+ export type FrameVersion = string ;
99
1010export type ImageAspectRatio = "1.91:1" | "1:1" ;
1111
@@ -145,12 +145,7 @@ export type FrameButton =
145145/** The permitted types of `buttonIndex` in a Frame POST payload response */
146146export type ActionIndex = 1 | 2 | 3 | 4 ;
147147
148- export type FrameButtonsType =
149- | [ ]
150- | [ FrameButton ]
151- | [ FrameButton , FrameButton ]
152- | [ FrameButton , FrameButton , FrameButton ]
153- | [ FrameButton , FrameButton , FrameButton , FrameButton ] ;
148+ export type FrameButtonsType = FrameButton [ ] ;
154149
155150export type AddressReturnType <
156151 Options extends { fallbackToCustodyAddress ?: boolean } | undefined ,
You can’t perform that action at this time.
0 commit comments