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

TabStop

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

A tab stop within a paragraph.

interface TabStop {
alignment?:
| "TAB_STOP_ALIGNMENT_UNSPECIFIED"
| "START"
| "CENTER"
| "END";
offset?: Dimension;
}

§Properties

§
alignment?: "TAB_STOP_ALIGNMENT_UNSPECIFIED" | "START" | "CENTER" | "END"
[src]

The alignment of this tab stop. If unset, the value defaults to START.

§

The offset between this tab stop and the start margin.