unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
35 lines • 1.01 kB
JavaScript
/* eslint-disable @typescript-eslint/no-unused-vars */
export default class FakePatStore {
create(_pat, _secret, _userId) {
throw new Error('Method not implemented.');
}
delete(_key) {
throw new Error('Method not implemented.');
}
deleteAll() {
throw new Error('Method not implemented.');
}
destroy() { }
exists(_key) {
throw new Error('Method not implemented.');
}
existsWithDescriptionByUser(_description, _userId) {
throw new Error('Method not implemented.');
}
countByUser(_userId) {
throw new Error('Method not implemented.');
}
get(_key) {
throw new Error('Method not implemented.');
}
getAll(_query) {
throw new Error('Method not implemented.');
}
getAllByUser(_userId) {
throw new Error('Method not implemented.');
}
deleteForUser(_id, _userId) {
throw new Error('Method not implemented.');
}
}
//# sourceMappingURL=fake-pat-store.js.map