@woocommerce/data
Version:
WooCommerce Admin data store and utilities
20 lines • 398 B
TypeScript
export type Settings = {
[key: string]: unknown;
} & {
general?: {
[key: string]: string;
};
tax?: {
[key: string]: string;
};
};
export type SettingsState = {
[key: string]: {
data?: unknown;
lastReceived?: Date;
error?: unknown;
isRequesting?: boolean;
dirty?: string[];
};
};
//# sourceMappingURL=types.d.ts.map