to_inventory/front/helpers.ts

15 lines
317 B
TypeScript

const config = useRuntimeConfig()
export const apiBase = config.public.apiBase
export type ApiTypeBase = {
count: number;
next?: any;
previous?: any;
results: any[];
}
export type ApiTypeExternal = {
'НаименованиеПолное': string;
Description: string;
Ref_Key: string;
}