Files
FrenoCorp/node_modules/svix/dist/models/applicationPatch.d.ts

13 lines
322 B
TypeScript

export interface ApplicationPatch {
metadata?: {
[key: string]: string;
};
name?: string;
rateLimit?: number | null;
uid?: string | null;
}
export declare const ApplicationPatchSerializer: {
_fromJsonObject(object: any): ApplicationPatch;
_toJsonObject(self: ApplicationPatch): any;
};