4 lines
102 B
TypeScript
4 lines
102 B
TypeScript
export interface IDeploymentRepository {
|
|
getLicenseKeyWithId(id: number): Promise<string | null>;
|
|
}
|