@etsoo/materialui
Version:
TypeScript Material-UI Implementation
27 lines (22 loc) • 310 B
text/typescript
export type RegionsRQ = {
/**
* Country id
*/
id?: string;
/**
* Favored country ids from top to bottom
*/
favoredIds?: string[];
/**
* Items count to query
*/
items?: number;
/**
* Filter keyword
*/
keyword?: string;
/**
* Cultrue
*/
culture?: string;
};