mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-03-28 17:42:40 +01:00
9 lines
163 B
TypeScript
9 lines
163 B
TypeScript
import { SortOrder, SortType } from ".";
|
|
|
|
export interface SortingSetting {
|
|
title: string;
|
|
name: string;
|
|
order: SortOrder;
|
|
type: SortType;
|
|
id?: string;
|
|
} |