global: snapshot

This commit is contained in:
nym21
2026-03-19 14:13:37 +01:00
parent b18cca92ab
commit 2df9ee4a1d
7 changed files with 569 additions and 876 deletions

View File

@@ -190,6 +190,15 @@ export function dotted(args) {
return line(_args);
}
/**
* @param {Omit<Parameters<typeof line>[0], 'style'>} args
*/
export function dashed(args) {
const _args = /** @type {Parameters<typeof line>[0]} */ (args);
_args.style = 2;
return line(_args);
}
/**
* @param {Omit<Parameters<typeof line>[0], 'style'>} args
*/