mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-23 22:40:50 +01:00
10 lines
211 B
TypeScript
10 lines
211 B
TypeScript
import { IObjectData } from '@nitrots/nitro-renderer';
|
|
|
|
export interface IPurchaseOptions
|
|
{
|
|
quantity?: number;
|
|
extraData?: string;
|
|
extraParamRequired?: boolean;
|
|
previewStuffData?: IObjectData;
|
|
}
|