unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
35 lines • 996 B
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