9 lines
217 B
TypeScript
9 lines
217 B
TypeScript
import { MinimalHttpResponse } from '../Http/MinimalHttpResponses'
|
|
import { SettingData } from './SettingData'
|
|
|
|
export type ListSettingsResponse = MinimalHttpResponse & {
|
|
data?: {
|
|
settings?: SettingData[]
|
|
}
|
|
}
|