@sourceloop/ctrl-plane-tenant-management-service
Version:
Tenant Management microservice for SaaS control plane
10 lines (9 loc) • 490 B
TypeScript
import { Entity } from '@loopback/repository';
import { WebhookSecret } from '../../models';
import { SequelizeCrudRepository, SequelizeDataSource } from '@loopback/sequelize';
export declare class WebhookSecretRepository<T extends WebhookSecret = WebhookSecret> extends SequelizeCrudRepository<T, typeof WebhookSecret.prototype.context> {
private readonly webhookSecret;
constructor(dataSource: SequelizeDataSource, webhookSecret: typeof Entity & {
prototype: T;
});
}