Skip to content

Commit

Permalink
lint:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Jan 30, 2024
1 parent 515b722 commit 8987092
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 13 deletions.
10 changes: 5 additions & 5 deletions packages/@glimmer/interfaces/lib/compile/operands.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ export interface BlockOperand {
export interface StdLibOperand {
type: StdLibOperandType;
value:
| 'main'
| 'trusting-append'
| 'cautious-append'
| 'trusting-non-dynamic-append'
| 'cautious-non-dynamic-append';
| 'main'
| 'trusting-append'
| 'cautious-append'
| 'trusting-non-dynamic-append'
| 'cautious-non-dynamic-append';
}

export interface NonSmallIntOperand {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export type ExpressionSexpOpcodeMap = {
[TSexpOpcode in TupleExpression[0]]: Extract<TupleExpression, { 0: TSexpOpcode }>;
};

export interface SexpOpcodeMap extends ExpressionSexpOpcodeMap, StatementSexpOpcodeMap { }
export interface SexpOpcodeMap extends ExpressionSexpOpcodeMap, StatementSexpOpcodeMap {}
export type SexpOpcode = keyof SexpOpcodeMap;

export namespace Core {
Expand Down
2 changes: 1 addition & 1 deletion packages/@glimmer/interfaces/lib/managers/component.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export interface ComponentManagerWithUpdateHook<ComponentStateBucket>

export interface ComponentManagerWithAsyncUpdateHook<ComponentStateBucket>
extends ComponentManagerWithAsyncLifeCycleCallbacks<ComponentStateBucket>,
ComponentManagerWithUpdateHook<ComponentStateBucket> {
ComponentManagerWithUpdateHook<ComponentStateBucket> {
didUpdateComponent(instance: ComponentStateBucket): void;
}

Expand Down
8 changes: 6 additions & 2 deletions packages/@glimmer/interfaces/lib/runtime/runtime.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import type { ResolutionTimeConstants, RuntimeConstants, RuntimeHeap, RuntimeOp } from
'../program.js';
import type {
ResolutionTimeConstants,
RuntimeConstants,
RuntimeHeap,
RuntimeOp,
} from '../program.js';
import type { RuntimeResolver } from '../serialize.js';
import type { Environment } from './environment.js';

Expand Down
5 changes: 1 addition & 4 deletions packages/@glimmer/interfaces/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,5 @@
"rootDir": ".",
"moduleResolution": "Node16"
},
"include": [
"index.d.ts",
"lib"
]
"include": ["index.d.ts", "lib"]
}

0 comments on commit 8987092

Please sign in to comment.