15 lines
306 B
TypeScript
15 lines
306 B
TypeScript
|
// @ts-nocheck
|
||
|
import type { ConfigFile } from '@rtk-query/codegen-openapi';
|
||
|
|
||
|
const config: ConfigFile = {
|
||
|
schemaFile: '',
|
||
|
apiFile: './src/api/emptyApi.ts',
|
||
|
apiImport: 'emptyApi',
|
||
|
hooks: { lazyQueries: true, mutations: true, queries: true },
|
||
|
tag: false,
|
||
|
outputFiles: {
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default config;
|