build(ags): init ags app

This commit is contained in:
Mohammad Rafiq 2025-04-02 00:18:34 +08:00
parent 4078359635
commit 482efdc70f
No known key found for this signature in database
7 changed files with 109 additions and 0 deletions

21
modules/programs/ags/env.d.ts vendored Normal file
View file

@ -0,0 +1,21 @@
declare const SRC: string
declare module "inline:*" {
const content: string
export default content
}
declare module "*.scss" {
const content: string
export default content
}
declare module "*.blp" {
const content: string
export default content
}
declare module "*.css" {
const content: string
export default content
}