We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efb1139 commit b843664Copy full SHA for b843664
src/react/types/index.ts
@@ -17,11 +17,11 @@ export type AnimationDefinition<Args> = [
17
export interface TimelineDefinition {
18
(el: Element | null): void;
19
/**
20
- * @private
+ * @internal
21
*/
22
_type: typeof SCROLL_TIMELINE | typeof VIEW_TIMELINE;
23
24
25
26
_get: () => AnimationTimeline;
27
}
tsconfig.json
@@ -22,7 +22,8 @@
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
- "exactOptionalPropertyTypes": true
+ "exactOptionalPropertyTypes": true,
+ "stripInternal": true
},
28
"include": ["src"],
29
"exclude": ["node_modules"]
0 commit comments