2020-09-05 15:54:03 +08:00

9 lines
229 B
TypeScript

import { RequestBaseConfig } from './base'
export interface SearchRequestConfig extends RequestBaseConfig {
keywords: string
type?: 1 | 10 | 100 | 1000 | 1002 | 1004 | 1006 | 1009 | 1014
limit?: string
offset?: string
}