You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For now, to use typings somebody would need to type import { CKEditor5 } from '@ckeditor/ckeditor5-angular/ckeditor. Similarly using the CKEditorComponent.
Both files can be re-exported from the main package though:
// ckeditor.module.ts
@NgModule( {
// ...
} )
export class CKEditorModule {}
export * from './ckeditor';
export { CKEditorComponent } from './ckeditor.component';
The text was updated successfully, but these errors were encountered:
ma2ciek
changed the title
Reexport existing typings and CKEditorComponent from the main file.
Reexport existing typings, CKEditorModule and CKEditorComponent from the main file.
Feb 5, 2019
ma2ciek
changed the title
Reexport existing typings, CKEditorModule and CKEditorComponent from the main file.
Reexport existing typings, CKEditorModule, and CKEditorComponent from the main file.
Feb 5, 2019
For now, to use typings somebody would need to type
import { CKEditor5 } from '@ckeditor/ckeditor5-angular/ckeditor
. Similarly using the CKEditorComponent.Both files can be re-exported from the main package though:
The text was updated successfully, but these errors were encountered: