Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PropertyOrder

import type { PropertyOrder } from "https://googleapis.deno.dev/v1/datastore:v1.ts";

The desired order for a specific property.

interface PropertyOrder {
direction?: "DIRECTION_UNSPECIFIED" | "ASCENDING" | "DESCENDING";
property?: PropertyReference;
}

§Properties

§
direction?: "DIRECTION_UNSPECIFIED" | "ASCENDING" | "DESCENDING"
[src]

The direction to order by. Defaults to ASCENDING.

§

The property to order by.