cdktg
Version:
Agile Threat Modeling as Code
19 lines (18 loc) • 527 B
TypeScript
export interface OutOfScopeProps {
readonly outOfScope: boolean;
readonly justification?: string;
}
export declare class Scope {
out: boolean;
readonly justification?: string | undefined;
static inScope(justification?: string): Scope;
static outOfScope(justification?: string): Scope;
constructor(out: boolean, justification?: string | undefined);
/**
* @internal
*/
_toThreagile(): {
out_of_scope: boolean;
justification_out_of_scope: string | undefined;
};
}