aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings/types/blockies/index.d.ts
blob: d4068e50fad440ce9cb8675c1a2f8dcc2eed8e4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// blockies declarations
declare interface BlockiesIcon {
    toDataURL(): string;
}
declare interface BlockiesConfig {
    seed: string;
}
declare function blockies(config: BlockiesConfig): BlockiesIcon;
declare module 'blockies' {
    export = blockies;
}