CI / Frontend deps check (push) Successful in 22s
CI / Go vulnerabilities (push) Successful in 32s
CI / Go build (push) Successful in 32s
CI / go mod tidy (push) Successful in 13s
CI / Knip (push) Failing after 33s
CI / Frontend build (push) Successful in 1m12s
CI / Svelte strict check (push) Has been skipped
CI / Frontend QC (audit) (push) Has been skipped
CI / Frontend QC (typecheck) (push) Has been skipped
CI / Frontend QC (lint) (push) Has been skipped
CI / Go vet (push) Successful in 57s
CI / golangci-lint (push) Successful in 1m8s
CI / Tests (prod) (push) Successful in 1m45s
CI / Tests (dev) (push) Successful in 2m5s
CI / Race (prod) (push) Successful in 3m27s
CI / Race (dev) (push) Successful in 4m52s
Restore processImage (images.go) and nonDepositPaymentType (handlers.go) with //nolint:unused — used in test files. Fix 97 tx.Rollback defers to silently discard expected "tx is closed" error after commit. Frontend: remove 44 unused shadcn-svelte files, 2 dead components, 9 stale npm deps, prune unused exports. Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
32 lines
964 B
TypeScript
32 lines
964 B
TypeScript
declare namespace svelteNative.JSX {
|
|
|
|
// Every namespace eligible for use needs to implement the following two functions
|
|
function mapElementTag(
|
|
tag: string
|
|
): any;
|
|
|
|
function createElement<Elements extends IntrinsicElements, Key extends keyof Elements>(
|
|
element: Key | undefined | null, attrs: Elements[Key]
|
|
): any;
|
|
function createElement<Elements extends IntrinsicElements, Key extends keyof Elements, T>(
|
|
element: Key | undefined | null, attrEnhancers: T, attrs: Elements[Key] & T
|
|
): any;
|
|
|
|
|
|
/* svelte specific */
|
|
interface ElementClass {
|
|
$$prop_def: any;
|
|
}
|
|
|
|
interface ElementAttributesProperty {
|
|
$$prop_def: any; // specify the property name to use
|
|
}
|
|
|
|
// Add empty IntrinsicAttributes to prevent fallback to the one in the JSX namespace
|
|
interface IntrinsicAttributes {
|
|
}
|
|
|
|
interface IntrinsicElements {
|
|
[name: string]: { [name: string]: any };
|
|
}
|
|
} |