mirror of
https://github.com/tridactyl/tridactyl.git
synced 2026-09-14 09:16:23 -04:00
13 lines
267 B
TypeScript
13 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
|
|
}
|