mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-09 23:34:26 +00:00
8803721f3d
* Move to TypeScript from legacy JavaScript * Add support of xterm.js * Hterm is still available for backward compatibility
12 lines
146 B
TypeScript
12 lines
146 B
TypeScript
export interface Storage {
|
|
}
|
|
|
|
export interface Memory {
|
|
new (): Storage;
|
|
Memory(): Storage
|
|
}
|
|
|
|
export var Storage: {
|
|
Memory: Memory
|
|
};
|