mirror of
https://github.com/barkeser2002/mcsleepingserverstarter.git
synced 2026-09-25 17:36:01 +03:00
4 lines
99 B
TypeScript
4 lines
99 B
TypeScript
export interface ISleepingServer {
|
|
init: () => Promise<void>;
|
|
close: () => Promise<void>;
|
|
} |