mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-06-25 12:31:45 +02:00
10 lines
164 B
TypeScript
10 lines
164 B
TypeScript
import { SortOrder, SortType } from '.';
|
|
|
|
export interface SortingSetting {
|
|
title: string;
|
|
name: string;
|
|
order: SortOrder;
|
|
type: SortType;
|
|
id?: string;
|
|
}
|