init: the first public commit for AFFiNE

This commit is contained in:
DarkSky
2022-07-22 15:49:21 +08:00
commit e3e3741393
1451 changed files with 108124 additions and 0 deletions

35
libs/utils/src/index.ts Normal file
View File

@@ -0,0 +1,35 @@
export * from './types';
export * from './constants';
export * from './error-boundary';
export * from './date';
export * from './utils';
export * from './dom';
// eslint-disable-next-line no-restricted-imports
export * from './lodash';
export * from './rect';
export * from './keyboard';
export * from './useragent';
export { isDev } from './env';
export { log } from './logger';
export { createNoopWithMessage } from './function';
export { DiContainer } from './di';
export type {
Value as DiValue,
DependencyCallOrConstructProps,
RegisterDependencyConfig,
} from './di';
export { copyToClipboard } from './copy-to-clipboard';