mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
8 lines
201 B
TypeScript
8 lines
201 B
TypeScript
// Original test file https://github.com/71104/rwlock/blob/master/test/all.js
|
|
import ReadWriteLock = require('rwlock');
|
|
|
|
const lock = new ReadWriteLock();
|
|
lock.readLock((release) => {
|
|
release();
|
|
});
|