mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-04 20:42:29 +02:00
10 lines
245 B
TypeScript
10 lines
245 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;
|
|
} |