mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
![]() |
import * as ts from "typescript"
|
||
|
|
||
|
export interface Type {
|
||
|
kind: string
|
||
|
name?: string
|
||
|
toConstructor(): string
|
||
|
toString(): string
|
||
|
convert: (argument: string) => any
|
||
|
}
|