Skip to content

Commit

Permalink
chore: add missing .ts extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
MKRhere committed Jan 8, 2025
1 parent 3904962 commit cfefbca
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/mark/src/Context.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { HypermarkDocument } from "./types";
import type { HypermarkDocument } from "./types.ts";
import { ParseError, count_char, get_line_neighbours, squiggly } from "./common.ts";

export interface ParseOptions {
Expand Down
4 changes: 2 additions & 2 deletions packages/mark/src/block.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { DecoratorEndMarker, DecoratorStartMarker } from "./common.ts";
import { is_newline, is_whitespace, ParserContext } from "./Context.ts";
import { Block, HypermarkDocument, Inline, Meta } from "./types.ts";
import { ident, try_param_value } from "./value.ts";
import { inline } from "./inline.ts";
import { Block, HypermarkDocument, Inline, Meta } from "./types";
import { ident, try_param_value } from "./value";

export function param(ctx: ParserContext): Block.Parameter | undefined {
const name = ident(ctx);
Expand Down
4 changes: 2 additions & 2 deletions packages/mark/src/inline.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Inline } from "./types";
import type { ParserContext } from "./Context";
import { Inline } from "./types.ts";
import type { ParserContext } from "./Context.ts";

export function try_link(ctx: ParserContext): Inline.Link | undefined {
const checkpoint = ctx.index;
Expand Down
4 changes: 2 additions & 2 deletions packages/mark/src/value.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Value } from "./types";
import type { ParserContext } from "./Context";
import type { Value } from "./types.ts";
import type { ParserContext } from "./Context.ts";

export function ident(ctx: ParserContext): string | undefined {
let buffer = "";
Expand Down

0 comments on commit cfefbca

Please sign in to comment.