UNPKG

flowbite-angular

Version:

<div align="center"> <h1>:construction: flowbite-angular (unreleased) :construction:</h1> <p> <a href="https://flowbite.com"> <img alt="Flowbite - Tailwind CSS components" width="350" src="https://flowbite.s3.amazonaws.com/github/logo-github

16 lines (15 loc) 526 B
/** * Thanks to Angular Material for Icon part of this library : https://github.com/angular/components */ export declare interface TrustedHTML { __brand__: 'TrustedHTML'; } export declare interface TrustedTypePolicyFactory { createPolicy(policyName: string, policyOptions: { createHTML?: (input: string) => string; }): TrustedTypePolicy; } export declare interface TrustedTypePolicy { createHTML(input: string): TrustedHTML; } export declare function trustedHTMLFromString(raw: string): TrustedHTML;