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