@vindev/particle
Version:
Angular Component Library using Tailwind
24 lines (23 loc) • 658 B
TypeScript
import { Constructor } from './constructor';
export declare enum PositionOpt {
LEFT = "left",
RIGHT = "right",
TOP = "top",
BOTTOM = "bottom",
CENTER = "center"
}
export declare function PositionMixin<T extends Constructor<{}>>(Base?: T): {
new (...args: any[]): {
left: boolean;
setLeft: string | boolean;
right: boolean;
setRight: string | boolean;
top: boolean;
setTop: string | boolean;
bottom: boolean;
setBottom: string | boolean;
center: boolean;
setCenter: string | boolean;
activePos(): PositionOpt;
};
} & T;