Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions spx-gui/.github/instructions/vue-coding.instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ Apply the [general coding guidelines](./general-coding.instructions.md) to all c
Here are instructions for Vue Component development in spx-gui:

* Generate accessibility info for interactive elements using `v-radar` directive.
* Check `src/components/ui/tokens/` for all design tokens, they can be used as CSS variables. For example: `--ui-gap-middle`, `--ui-color-primary`.
3 changes: 3 additions & 0 deletions spx-gui/src/apis/asset.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import type { FileCollection, ByPage, PaginationParams } from './common'
import { client, Visibility } from './common'
import type { ProjectSettings } from './project'

export { Visibility }

Expand All @@ -9,6 +10,8 @@ export enum AssetType {
Sound = 'sound'
}

export type AssetSettings = ProjectSettings

export type AssetData = {
/** Unique identifier */
id: string
Expand Down
Loading
Loading