File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { isEmpty } from 'es-toolkit/compat'
3
3
4
4
import { api } from '@/scripts/api'
5
5
6
- export interface UserCloudStatus {
6
+ interface UserCloudStatus {
7
7
status : 'active' | 'waitlisted'
8
8
}
9
9
@@ -187,7 +187,7 @@ export async function getSurveyCompletedStatus(): Promise<boolean> {
187
187
}
188
188
}
189
189
190
- export async function postSurveyStatus ( ) : Promise < void > {
190
+ async function postSurveyStatus ( ) : Promise < void > {
191
191
try {
192
192
const response = await api . fetchApi ( `/settings/${ ONBOARDING_SURVEY_KEY } ` , {
193
193
method : 'POST' ,
Original file line number Diff line number Diff line change 1
1
import { api } from '@/scripts/api'
2
2
3
- export type FileType = 'input' | 'output' | 'temp'
3
+ type FileType = 'input' | 'output' | 'temp'
4
4
5
5
export interface FileNameMapping {
6
6
[ assetId : string ] : string // asset-id -> asset name
7
7
}
8
8
9
- export interface CacheEntry {
9
+ interface CacheEntry {
10
10
data : FileNameMapping
11
11
dedupData ?: FileNameMapping // Deduplicated mapping with unique display names
12
12
timestamp : number
You can’t perform that action at this time.
0 commit comments