Skip to content

Commit fa81a3a

Browse files
nonaraRon Spickenagel
authored and
Ron Spickenagel
committed
style: formatting
1 parent 0dbe06e commit fa81a3a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export type PackageAType = null;
22
export declare const packageAConst: PackageAType;
3-
export type PassThru<T> = T | string
3+
export type PassThru<T> = T | string;

test/projects/specific/src/sub-packages.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ export { subPackageConst as C4 } from "#packages/pkg-a/sub-pkg/main";
1212
// This path should resolve to './packages/pkg-a/sub-pkg/main.js', due to explicit extension
1313
export { subPackageConst as C5 } from "#packages/pkg-a/sub-pkg/main.js";
1414

15-
export type ImportWithChildren = import("#packages/pkg-a").PassThru<import("#packages/pkg-b").PackageBType>
15+
export type ImportWithChildren = import("#packages/pkg-a").PassThru<import("#packages/pkg-b").PackageBType>;

test/tests/extras.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ describe(`Extra Tests`, () => {
4343
const res = execSync("npx ts-node --typeCheck src/index.ts", { cwd: projectRoot }).toString();
4444
expect(res).toMatch(/^null($|\r?\n)/);
4545
});
46-
})
46+
});
4747
});
4848
});

0 commit comments

Comments
 (0)