quarc/core/angular/index.ts

15 lines
635 B
TypeScript

export * from './injectable';
export * from './component';
export * from './directive';
export * from './pipe';
export { Input, input, createInput, createRequiredInput } from './input';
export type { InputSignal, InputOptions } from './input';
export { Output, output, createOutput } from './output';
export type { OutputEmitterRef, OutputOptions } from './output';
export * from './host-binding';
export * from './host-listener';
export { Type } from '../module/type';
export { signal, computed, effect } from './signals';
export type { Signal, WritableSignal, EffectRef, CreateSignalOptions, CreateEffectOptions } from './signals';