mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-10-18 04:29:04 +00:00
13 lines
254 B
TypeScript
13 lines
254 B
TypeScript
export interface ZoneUnlinkProgressDto {
|
|
zoneName: string;
|
|
percentage: number;
|
|
}
|
|
|
|
export interface UnlinkingBinds {
|
|
unlinkZone(zoneName: string): Promise<void>;
|
|
}
|
|
|
|
export interface UnlinkingEventMap {
|
|
zoneUnlinkProgress: ZoneUnlinkProgressDto;
|
|
}
|