Files
privacy.sexy/src/domain/IScriptCode.ts
2020-11-01 18:36:55 +01:00

5 lines
92 B
TypeScript

export interface IScriptCode {
readonly execute: string;
readonly revert: string;
}