UNPKG

215 BTypeScriptView Raw
1/** Alignment along the horizontal axis. */
2export declare const Alignment: {
3 CENTER: "center";
4 LEFT: "left";
5 RIGHT: "right";
6};
7export declare type Alignment = typeof Alignment[keyof typeof Alignment];