UNPKG

derw

Version:

An Elm-inspired language that transpiles to TypeScript

5 lines (4 loc) 258 B
type BuiltinTypes = "boolean" | "number" | "string" | "void" | "any" | "Promise"; export declare function isBuiltinType(potentialType: string): potentialType is BuiltinTypes; export declare function isReservedName(potentialName: string): boolean; export {};