course-renderer
Version:
Manages CA School Courses file system storage and HTML conversion
14 lines (13 loc) • 328 B
TypeScript
import Reader from '../reader';
export interface AnnotationInterface {
type: string;
answer: string;
readonly?: string;
caption?: string;
id?: string;
init?: string;
files?: string;
raw: string;
choiceType?: string;
}
export declare function annotation(reader: Reader, silent: boolean): any;