@ritttzy/vue-brand
Version:
## Project setup ``` npm install ```
22 lines (18 loc) • 409 B
text/typescript
/**
* wether the footer uses de default style or not
* @defaultValue false
*/
type customFooterStyle = boolean;
/**
* wether the footer is fixed to the bottom of the page
* * @defaultValue false
*/
type fixedFooter = boolean;
/**
* component props
*/
interface RitttzyFooterProps {
fixed: fixedFooter;
custom: customFooterStyle;
}
export { customFooterStyle, fixedFooter, RitttzyFooterProps };