7 lines
105 B
TypeScript
7 lines
105 B
TypeScript
import { StringValue } from 'ms';
|
|
|
|
export interface Coupon {
|
|
code: string;
|
|
duration?: StringValue;
|
|
}
|