mns-mini-zabor/composables/globalFenceType.ts

8 lines
184 B
TypeScript

interface calc {
id: number
type: 'standart' | 'aristo'
calc: ApiCalcType
}
export const useGlobalFenceType = () => useState<calc | null>('fence-global-type', () => null)