UNPKG

@react-p5/utils

Version:

This library consists of "nice to haves" to alleviate repetitive tasks and boilerplate from your sketches.

6 lines (5 loc) 191 B
export type PaperSize = "A0" | "A1" | "A2" | "A3" | "A4"; export interface PaperSizes { [key: string]: number[]; } export declare const getDimensions: (paperSize: PaperSize) => number[];