Slide 31
Slide 31 text
@ManfredSteyer
Extensions
export const FlightBookingStore = signalStore(
{ providedIn: 'root' },
withState({
from: 'Paris',
to: 'London',
[…]
}),
withComputed(([…]) => ({ […] })),
withMethods(([…]) => ({ })),
withHooks({ […] }),
withResource([…]}),
withDevtools([…]}),
withUndoRedo(),
);