mirror of
https://github.com/RoboSats/robosats.git
synced 2025-02-12 08:19:02 +00:00
![Reckless_Satoshi](/assets/img/avatar_default.png)
* 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
20 lines
764 B
TypeScript
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';
|