mirror of
https://github.com/directus/directus.git
synced 2026-02-01 16:24:59 -05:00
9 lines
234 B
TypeScript
9 lines
234 B
TypeScript
import { ItemsService } from './items';
|
|
import { AbstractServiceOptions } from '../types';
|
|
|
|
export class PresetsService extends ItemsService {
|
|
constructor(options: AbstractServiceOptions) {
|
|
super('directus_presets', options);
|
|
}
|
|
}
|