UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

8 lines (7 loc) 393 B
declare const LEFT_BRACKETS: readonly ["(", "{"]; declare const RIGHT_BRACKETS: readonly [")", "}"]; declare type LeftBracket = typeof LEFT_BRACKETS[number]; declare type RightBracket = typeof RIGHT_BRACKETS[number]; declare type Bracket = LeftBracket | RightBracket; export declare function findMatchingBracketPosition(contents: string, bracket: Bracket, offset?: number): number; export {};