File tree 2 files changed +3
-11
lines changed 2 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import { Styles } from "./styles";
19
19
import { ExternalStylesFactory } from "./styles/external-styles-factory" ;
20
20
import { DefaultStylesFactory } from "./styles/factory" ;
21
21
22
- type ISectionOptions = {
22
+ export type ISectionOptions = {
23
23
readonly headers ?: {
24
24
readonly default ?: Header ;
25
25
readonly first ?: Header ;
@@ -34,7 +34,7 @@ import { DefaultStylesFactory } from "./styles/factory";
34
34
readonly children : readonly FileChild [ ] ;
35
35
} ;
36
36
37
- class File {
37
+ export class File {
38
38
// eslint-disable-next-line functional/prefer-readonly-type
39
39
private currentRelationshipId : number = 1 ;
40
40
@@ -307,12 +307,3 @@ import { DefaultStylesFactory } from "./styles/factory";
307
307
return this . fontWrapper ;
308
308
}
309
309
}
310
-
311
- export {
312
- File ,
313
- }
314
-
315
- export type {
316
- ISectionOptions ,
317
- IPropertiesOptions
318
- }
Original file line number Diff line number Diff line change @@ -21,3 +21,4 @@ export * from "./vertical-align";
21
21
export * from "./checkbox" ;
22
22
export * from "./fonts" ;
23
23
export * from "./textbox" ;
24
+ export { type IPropertiesOptions } from "./core-properties" ;
You can’t perform that action at this time.
0 commit comments