ember-material-icons
Version:
Google Material icons for your ember-cli app
21 lines (16 loc) • 450 B
TypeScript
declare module "handlebars/compiler/base" {
export function parse(html: string): any;
}
declare module "simple-html-tokenizer" {
export const HTML5NamedCharRefs: CharRef;
export class EntityParser {
constructor(ref: CharRef);
}
export class EventedTokenizer {
constructor(object: Object, parser: EntityParser)
}
export function tokenize(html: string): any;
export interface CharRef {
[namedRef: string]: string;
}
}