8 lines
212 B
TypeScript
8 lines
212 B
TypeScript
export interface EasypostConfig {
|
|
secret?: string | null;
|
|
}
|
|
export declare const EasypostConfigSerializer: {
|
|
_fromJsonObject(object: any): EasypostConfig;
|
|
_toJsonObject(self: EasypostConfig): any;
|
|
};
|