@signatu/policy
Version:
signatu policy components
9 lines (8 loc) • 372 B
TypeScript
import { PolicyElement, PolicyElementJSON } from './policyElement';
export declare type PolicyClauseGroupJSON = PolicyElementJSON;
export declare class PolicyClauseGroup extends PolicyElement {
static fromJSON(json: any): PolicyClauseGroup;
static reviver(key: string, value: any): any;
constructor(masterText?: string);
toJSON(): PolicyClauseGroupJSON;
}