UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

8 lines (7 loc) 231 B
export type Opaque = {} | void | null | undefined; export type Option<T> = T | null; export type Maybe<T> = Option<T> | undefined; export type FIXME<T, S extends string> = T; export interface Dict<T> { [key: string]: T; }