- MANUAL-PRODUTO.md: Manual do usuário final - MANUAL-VENDAS.md: Estratégia comercial e vendas - MANUAL-TECNICO.md: Infraestrutura e deploy - README.md: Visão geral do projeto
5 lines
398 B
TypeScript
5 lines
398 B
TypeScript
import type { StateCreator, StoreMutatorIdentifier } from 'zustand/vanilla';
|
|
type Write<T, U> = Omit<T, keyof U> & U;
|
|
export declare function combine<T extends object, U extends object, Mps extends [StoreMutatorIdentifier, unknown][] = [], Mcs extends [StoreMutatorIdentifier, unknown][] = []>(initialState: T, create: StateCreator<T, Mps, Mcs, U>): StateCreator<Write<T, U>, Mps, Mcs>;
|
|
export {};
|