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