@signatu/policy
Version:
signatu policy components
20 lines (19 loc) • 683 B
TypeScript
import { PolicyContent, PolicyContentJSON, PolicyContentBase } from "./policyContent";
export interface FontIconContentJSON extends PolicyContentJSON {
cssClass: string;
title: string;
}
export declare class FontIconContent extends PolicyContentBase implements PolicyContent {
title: string;
cssClass: string;
readonly class: string;
readonly value: string;
static fromJSON(json: FontIconContentJSON): FontIconContent;
constructor(title: string, cssClass: string);
toJSON(): FontIconContentJSON;
}
export declare const StandardIcons: {
SECURE: FontIconContent;
SIGNATU_CONSENT: FontIconContent;
SIGNATU_CONTROLLER: FontIconContent;
};