mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
12 lines
267 B
TypeScript
12 lines
267 B
TypeScript
|
|
export interface Type {
|
|
// Only available on argument types
|
|
name?: string
|
|
isDotDotDot?: boolean
|
|
isQuestion?: boolean
|
|
// available everywhere
|
|
kind: string
|
|
toConstructor(): string
|
|
toString(): string
|
|
convert(argument: string): any
|
|
}
|