mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
218 B
TypeScript
10 lines
218 B
TypeScript
import Ids = require('ids');
|
|
|
|
const ids = new Ids();
|
|
|
|
const next = ids.next(); // returns id
|
|
|
|
ids.claim('f71a81'); // claim id as already existing
|
|
|
|
ids.assigned('f71a81'); // true if id was already generated / claimed
|