ancient-ui
Advanced tools
Comparing version 0.1.3 to 0.1.4
@@ -1,5 +0,7 @@ | ||
export declare const aileronFonts: { | ||
export declare const aileronFonts: LocalFont[]; | ||
type LocalFont = { | ||
path: string; | ||
weight: string; | ||
style: string; | ||
}[]; | ||
style: "normal" | "italic" | "oblique" | string; | ||
}; | ||
export {}; |
{ | ||
"name": "ancient-ui", | ||
"version": "0.1.3", | ||
"version": "0.1.4", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -1,2 +0,2 @@ | ||
export const aileronFonts = [ | ||
export const aileronFonts: LocalFont[] = [ | ||
{ | ||
@@ -83,1 +83,8 @@ path: "./fonts/Aileron-Black.otf", | ||
]; | ||
type LocalFont = { | ||
path: string; | ||
weight: string; // Adjust the type according to your font library's requirements | ||
style: "normal" | "italic" | "oblique" | string; // Adjust as needed | ||
// Add more properties if necessary | ||
}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4063131
11694