Skip to content
Snippets Groups Projects
test-controller.interfaces.ts 751 B
Newer Older
  • Learn to ignore specific revisions
  • export interface UnitLogData {
        unitName: string;
        logEntry: string;
    }
    
    export interface UnitResponseData {
        unitName: string;
        response: string;
        responseType: string;
    }
    
    export interface UnitRestorePointData {
        unitName: string;
        restorePoint: string;
    }
    
    export interface StartLockData {
        prompt: string;
        keyPreset: string;
    }
    
    export interface BookletData {
        xml: string;
        locked: boolean;
    
        state: BookletState;
    
    }
    
    export interface UnitData {
        xml: string;
        restorepoint: string;
        status: {};
    }
    
    
    export interface BookletState {
        u: number;
        responses: string;
        presented: string;
        status: string;
    }
    
    export interface CodeInputData {
        prompt: string;
        code: string;
        value: string;
    }