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
@@ -148,12 +148,7 @@ export type FrameButton =
148148/** The permitted types of `buttonIndex` in a Frame POST payload response */
149149export type ActionIndex = 1 | 2 | 3 | 4 ;
150150
151- export type FrameButtonsType =
152- | [ ]
153- | [ FrameButton ]
154- | [ FrameButton , FrameButton ]
155- | [ FrameButton , FrameButton , FrameButton ]
156- | [ FrameButton , FrameButton , FrameButton , FrameButton ] ;
151+ export type FrameButtonsType = FrameButton [ ] ;
157152
158153export type AddressReturnType <
159154 Options extends { fallbackToCustodyAddress ?: boolean } | undefined
You can’t perform that action at this time.
0 commit comments