mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
8 lines
203 B
TypeScript
8 lines
203 B
TypeScript
export interface CanvasLockInfo {
|
|
asset_string: string;
|
|
unlock_at?: string; // ISO 8601 date string
|
|
lock_at?: string; // ISO 8601 date string
|
|
context_module?: any;
|
|
manually_locked?: boolean;
|
|
}
|