initial commit

This commit is contained in:
2021-12-10 12:03:04 +00:00
commit c46c7ddbf0
3643 changed files with 582794 additions and 0 deletions

View File

@ -0,0 +1,11 @@
declare global {
interface Window {
wcSettings: {
preloadOptions: Record< string, unknown >;
adminUrl: string;
};
}
}
/*~ If your module exports nothing, you'll need this line. Otherwise, delete it */
export {};

View File

@ -0,0 +1,11 @@
declare module '@woocommerce/e2e-utils';
declare module '@woocommerce/e2e-environment';
declare module '@wordpress/data';
declare module '@wordpress/compose';
declare module 'gridicons/dist/*' {
const value: React.ElementType< {
size?: 12 | 18 | 24 | 36 | 48 | 54 | 72;
onClick?: ( event: MouseEvent | KeyboardEvent ) => void;
} >;
export default value;
}