mirror of
https://github.com/codex-team/editor.js
synced 2026-03-18 00:19:53 +01:00
* fix(inline-toolbar): appearing logic improved * tests added * fix tests * debounce added * fix test build in github action * increase closeTo delta for ff
11 lines
276 B
TypeScript
11 lines
276 B
TypeScript
interface ImportMetaEnv {
|
|
/**
|
|
* Build environment.
|
|
* For example, used to detect building for tests and add "data-cy" attributes for DOM querying.
|
|
*/
|
|
readonly MODE: "test" | "development" | "production";
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|