hotelier-lib
Version:
A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook
55 lines (54 loc) • 2.6 kB
TypeScript
import addPerson, { GuestType } from './addPerson/addperson';
import addService, { IService } from './addServices/addServicesForm';
import maintainance from './maintenanceAlert/maintenanceAlertForm';
import roomType, { IRoomTypeType } from './roomtype/addroomType';
import addroom, { IRoom } from './addrooms/addrooms';
import serviceCategory, { IServiceCategory } from './addServicescategory/addServiceCategoryForm';
import booking, { IbookingForm } from './newBooking/newBookingForm';
import Billing, { IBillForm } from './billingComponent/billingComponent';
import changePassword, { IChangePassword } from './change-password/changePassword';
import invoice, { IInvoiceForm } from './invoiceEditable/invoiceEditableForm';
import registrationForm, { IRegistrationForm } from "../../registrationForm/registrationForm";
import pilicyForm, { IPolicyForm } from "./policy/policy";
import hotelInformation, { IHotelInformationForm } from "./hotel-informations/hotel-informations";
import notificationSettings, { IEmailConfigForm } from './emailConfig/emailConfig';
import regionalSettings, { IRegionalForm } from './regional/regional';
import myProfile, { IMyProfile } from './my-profile/my-profile';
import addUser, { IAddUser } from "./addUser/addUser";
export declare const Form: {
changePassword: typeof changePassword;
addPerson: typeof addPerson;
addService: typeof addService;
maintainance: typeof maintainance;
roomType: typeof roomType;
addroom: typeof addroom;
serviceCategory: typeof serviceCategory;
booking: typeof booking;
Billing: typeof Billing;
invoice: typeof invoice;
registrationForm: typeof registrationForm;
pilicyForm: typeof pilicyForm;
hotelInformation: typeof hotelInformation;
notificationSettings: typeof notificationSettings;
regionalSettings: typeof regionalSettings;
myProfile: typeof myProfile;
addUser: typeof addUser;
};
export declare namespace IForm {
type addPerson = GuestType;
type addService = IService;
type serviceCategory = IServiceCategory;
type addroom = IRoom;
type roomType = IRoomTypeType;
type bookingForm = IbookingForm;
type billing = IBillForm;
type invoice = IInvoiceForm;
type registrationForm = IRegistrationForm;
type policy = IPolicyForm;
type hotelInformation = IHotelInformationForm;
type notificationSettings = IEmailConfigForm;
type regionalSettings = IRegionalForm;
type myProfile = IMyProfile;
type changePassword = IChangePassword;
type addUser = IAddUser;
}