-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ngx-jodit): new type for Jodit options: JoditConfig
With JoditConfig you can now make use of the advantage of type suggestions in your IDE when you write options for your NgxJodit instance.
- Loading branch information
1 parent
7129dcd
commit d6cd94b
Showing
6 changed files
with
582 additions
and
2,052 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export * from './lib/ngx-jodit.module'; | ||
export * from './lib/ngx-jodit/ngx-jodit.component'; | ||
export * from './lib/types'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import * as JoditESMConfig from 'jodit/config'; | ||
import * as JoditCoreConfig from 'jodit/types/config'; | ||
|
||
export type JoditConfig = Partial<JoditCoreConfig.Config & JoditESMConfig.Config>; |
Oops, something went wrong.