mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 17:41:40 -05:00
17 lines
293 B
TypeScript
17 lines
293 B
TypeScript
![]() |
// Interfaces common to the tridactyl project.
|
||
|
|
||
|
// For some obscure reason, tsc doesn't like .d.ts files to share a name with
|
||
|
// .ts files. So don't do that.
|
||
|
|
||
|
interface Number {
|
||
|
mod(n: number): number
|
||
|
}
|
||
|
|
||
|
interface Message {
|
||
|
command?: string
|
||
|
string?: string
|
||
|
number?: number
|
||
|
}
|
||
|
|
||
|
|