Variable: core

const core: (
  | typeof Router
  | typeof Trie
  | typeof PolicyEvaluator
  | typeof EventEmitter)[];

Defined in: src/core.ts:24

Core framework services. Include these in your root component’s services array.

Example

import { BaseComponent, Component, core, RouteView } from 'signalsframework';

@Component({
  services: [...core, AuthService, MyPolicy]
})
export class App extends BaseComponent {
  view() {
    return <RouteView />;
  }
}