mirror of
https://github.com/directus/directus.git
synced 2026-02-19 10:14:33 -05:00
Co-authored-by: Azri Kahar <42867097+azrikahar@users.noreply.github.com> Co-authored-by: ian <licitdev@gmail.com> Co-authored-by: Rijk van Zanten <rijkvanzanten@me.com>
9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
import { ChildProcess } from 'child_process';
|
|
|
|
const global = {
|
|
directus: {} as { [vendor: string]: ChildProcess },
|
|
directusNoCache: {} as { [vendor: string]: ChildProcess },
|
|
};
|
|
|
|
export default global;
|