@knapsack/app
Version:
Build Design Systems on top of knapsack, by Basalt
13 lines • 305 B
TypeScript
import { Slice } from './types';
import './image-slice.scss';
declare type Image = {
caption?: string;
src: string;
};
declare type Data = {
imageSize?: 's' | 'm' | 'l';
images?: Image[];
};
export declare const imageSlice: Slice<Data>;
export {};
//# sourceMappingURL=image-slice.d.ts.map