@datocms/cma-client
Version:
JS client for DatoCMS REST Content Management API
29 lines (28 loc) • 1.16 kB
TypeScript
import BaseResource from '../../BaseResource';
import type * as SchemaTypes from '../SchemaTypes';
import type * as SimpleSchemaTypes from '../SimpleSchemaTypes';
export default class EmojiSuggestions extends BaseResource {
static readonly TYPE: "emoji_suggestions";
/**
* Retrieve emoji suggestions
*
* Read more: https://www.datocms.com/docs/content-management-api/resources/emoji-suggestions/self
*
* @throws {ApiError}
* @throws {TimeoutError}
*
* @deprecated This API call is to be considered private and might change without notice
*/
find(queryParams?: SimpleSchemaTypes.EmojiSuggestionsSelfHrefSchema): Promise<SimpleSchemaTypes.EmojiSuggestions>;
/**
* Retrieve emoji suggestions
*
* Read more: https://www.datocms.com/docs/content-management-api/resources/emoji-suggestions/self
*
* @throws {ApiError}
* @throws {TimeoutError}
*
* @deprecated This API call is to be considered private and might change without notice
*/
rawFind(queryParams?: SchemaTypes.EmojiSuggestionsSelfHrefSchema): Promise<SchemaTypes.EmojiSuggestionsSelfTargetSchema>;
}