robosats/frontend/src/models/index.ts
Reckless_Satoshi c0b8a6d3ac
Add robot garage (#370)
* Add garage model

* Add robot select to profile

* Replace Robot for Garage init

* Add Garage inners, not re-rendering

* Revert

* Collect new phrases and small fixes

* Small fixes

* Fix unencrypted # hack on Turtle chat

* Small fixes and collect phrases
2023-03-02 11:01:06 +00:00

20 lines
764 B
TypeScript

import Robot from './Robot.model';
import Garage from './Garage.model';
import Settings from './Settings.default.basic';
export { Robot, Garage, Settings };
export type { LimitList } from './Limit.model';
export type { Limit } from './Limit.model';
export type { Maker } from './Maker.model';
export type { Order } from './Order.model';
export type { PublicOrder } from './Book.model';
export type { Book } from './Book.model';
export type { Info } from './Info.model';
export type { Slot } from './Garage.model';
export type { Language } from './Settings.model';
export type { Favorites } from './Favorites.model';
export type { Coordinator } from './Coordinator.model';
export { defaultMaker } from './Maker.model';
export { defaultInfo } from './Info.model';