You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/packages/hydrojudge/src/interface.ts

17 lines
313 B
TypeScript

export interface SFile {
src?: string,
content?: string,
fileId?: string,
}
export interface Execute {
execute: string,
clean: Function,
copyIn: Record<string, SFile>,
time?: number,
}
export interface CompileErrorInfo {
stdout?: string,
stderr?: string,
status?: string
}