Merge pull request #12138 from fromm1990/patch-1

Adding imagePath property
This commit is contained in:
Yui
2016-11-10 12:50:15 -08:00
committed by GitHub

View File

@@ -1413,8 +1413,12 @@ declare namespace L {
createShadow(oldIcon?: HTMLElement): HTMLElement;
}
export interface IconDefault extends Icon {
imagePath: string;
}
export namespace Icon {
export const Default: Icon;
export const Default: IconDefault;
}
export function icon(options: IconOptions): Icon;