mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +08:00
12 lines
258 B
TypeScript
12 lines
258 B
TypeScript
import {jdenticon} from "jdenticon";
|
|
|
|
function testJdenticon() {
|
|
if (typeof jdenticon.version !== 'string') {
|
|
throw '.version should be of string type.';
|
|
}
|
|
|
|
jdenticon.update('#jdenticon', 'd6d7705392bc7af633328bea8c4c6904', 8);
|
|
}
|
|
|
|
testJdenticon();
|