Complete residential site build with Docker Compose & Gitea Actions deployment

This commit is contained in:
CalebLewallen
2026-05-13 17:31:20 -04:00
parent f9c4e13a50
commit 3c22823f72
19354 changed files with 2097331 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
import type { CSSValue, FunctionCall, Literal } from '@emmetio/css-abbreviation';
export type CSSSnippet = CSSSnippetRaw | CSSSnippetProperty;
interface KeywordMap {
[name: string]: FunctionCall | Literal;
}
export declare const enum CSSSnippetType {
Raw = "Raw",
Property = "Property"
}
interface CSSSnippetBase {
type: CSSSnippetType;
key: string;
}
export interface CSSSnippetRaw extends CSSSnippetBase {
type: CSSSnippetType.Raw;
value: string;
}
export interface CSSSnippetProperty extends CSSSnippetBase {
type: CSSSnippetType.Property;
property: string;
value: CSSValue[][];
keywords: KeywordMap;
dependencies: CSSSnippetProperty[];
}
/**
* Creates structure for holding resolved CSS snippet
*/
export default function createSnippet(key: string, value: string): CSSSnippet;
/**
* Nests more specific CSS properties into shorthand ones, e.g.
* `background-position-x` -> `background-position` -> `background`
*/
export declare function nest(snippets: CSSSnippet[]): CSSSnippet[];
export {};