@foxy.io/sdk
Version:
Universal SDK for a full server-side and a limited in-browser access to Foxy hAPI.
21 lines (17 loc) • 610 B
TypeScript
import type { Graph } from '../../core';
import type { PropertyHelpers } from './property_helpers';
export interface Languages extends Graph {
curie: 'fx:languages';
links: {
/** This resource. */
'self': Languages;
/** Various predefined property values. */
'fx:property_helpers': PropertyHelpers;
};
props: {
/** A small, human readable explanation of this property helper. */
message: string;
/** JSON objects with the languages supported. The key values are the values you use for the Store resource's language property. */
values: Record<string, string>;
};
}