mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-06 13:32:30 +02:00
11 lines
241 B
TypeScript
11 lines
241 B
TypeScript
import { SortOrder, SortType } from '../../models';
|
|
import { SortOption } from '../constants/SortOption';
|
|
|
|
export interface SortingOption {
|
|
title?: string;
|
|
name: string;
|
|
id: SortOption | string;
|
|
order: SortOrder;
|
|
type: SortType;
|
|
}
|