@seliseblocks/key-mode
v0.0.13
Published
Key-mode is a package to enable key-mode feature in application.
Downloads
210
Maintainers
Keywords
Readme
Key Mode
Key-mode is a package to enable key-mode feature in application.
Purpose
The primary purpose of key-mode is to trigger key mode view in the application.
Installation
npm i @seliseblocks/key-mode
Usage
Add the KeyModeModule to the imports of the main(root) module
import { KeyModeModule } from "@seliseblocks/key-mode";
@NgModule({
imports: [
// other modules
KeyModeModule.forRoot(),
],
})
export class YourMainModule {}