mirror of
https://github.com/directus/directus.git
synced 2026-02-02 02:45:01 -05:00
9 lines
237 B
TypeScript
9 lines
237 B
TypeScript
import { ItemsService } from './items';
|
|
import { AbstractServiceOptions } from '../types';
|
|
|
|
export class SettingsService extends ItemsService {
|
|
constructor(options?: AbstractServiceOptions) {
|
|
super('directus_settings', options);
|
|
}
|
|
}
|