Skip to content

Commit b843664

Browse files
committed
Use stripInternal
1 parent efb1139 commit b843664

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/react/types/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ export type AnimationDefinition<Args> = [
1717
export interface TimelineDefinition {
1818
(el: Element | null): void;
1919
/**
20-
* @private
20+
* @internal
2121
*/
2222
_type: typeof SCROLL_TIMELINE | typeof VIEW_TIMELINE;
2323
/**
24-
* @private
24+
* @internal
2525
*/
2626
_get: () => AnimationTimeline;
2727
}

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
"noFallthroughCasesInSwitch": true,
2323
"allowUnreachableCode": false,
2424
"allowUnusedLabels": false,
25-
"exactOptionalPropertyTypes": true
25+
"exactOptionalPropertyTypes": true,
26+
"stripInternal": true
2627
},
2728
"include": ["src"],
2829
"exclude": ["node_modules"]

0 commit comments

Comments
 (0)