cleaned up random .js imports
This commit is contained in:
parent
47109baff7
commit
c172ecc6d3
19 changed files with 107 additions and 69 deletions
|
|
@ -5,11 +5,11 @@
|
|||
*/
|
||||
|
||||
// Core shutdown classes and types
|
||||
export { Shutdown } from './shutdown.js';
|
||||
export type { ShutdownCallback, ShutdownOptions, ShutdownResult } from './types.js';
|
||||
export { Shutdown } from './shutdown';
|
||||
export type { ShutdownCallback, ShutdownOptions, ShutdownResult } from './types';
|
||||
|
||||
import { Shutdown } from './shutdown.js';
|
||||
import type { ShutdownResult } from './types.js';
|
||||
import { Shutdown } from './shutdown';
|
||||
import type { ShutdownResult } from './types';
|
||||
|
||||
// Global singleton instance
|
||||
let globalInstance: Shutdown | null = null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue