- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
14 lines
345 B
TypeScript
14 lines
345 B
TypeScript
import type { BlockDB } from './blockDB.js';
|
|
interface BlockPosition {
|
|
px: number;
|
|
py: number;
|
|
}
|
|
export declare function calculateBlockPosition(columns: number, position: number): BlockPosition;
|
|
export declare function layout(db: BlockDB): {
|
|
x: number;
|
|
y: number;
|
|
width: number;
|
|
height: number;
|
|
} | undefined;
|
|
export {};
|