@yozora/tokenizer-footnote-reference 2.0.6 → 2.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,12 +1,12 @@
1
- import { IPartialYastInlineToken, ITokenizer, IBaseInlineTokenizerProps, IYastTokenDelimiter, IMatchInlineHookCreator, IParseInlineHookCreator, BaseInlineTokenizer, IInlineTokenizer } from '@yozora/core-tokenizer';
1
+ import { IPartialInlineToken, ITokenizer, IBaseInlineTokenizerProps, ITokenDelimiter, IMatchInlineHookCreator, IParseInlineHookCreator, BaseInlineTokenizer, IInlineTokenizer } from '@yozora/core-tokenizer';
2
2
  import { Association, FootnoteReferenceType, FootnoteReference } from '@yozora/ast';
3
3
 
4
4
  declare const uniqueName = "@yozora/tokenizer-footnote-reference";
5
5
  type T = FootnoteReferenceType;
6
6
  type INode = FootnoteReference;
7
- interface IToken extends IPartialYastInlineToken<T>, Association {
7
+ interface IToken extends IPartialInlineToken<T>, Association {
8
8
  }
9
- interface IDelimiter extends IYastTokenDelimiter {
9
+ interface IDelimiter extends ITokenDelimiter {
10
10
  type: 'full';
11
11
  }
12
12
  type IThis = ITokenizer;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yozora/tokenizer-footnote-reference",
3
- "version": "2.0.6",
3
+ "version": "2.1.1",
4
4
  "author": {
5
5
  "name": "guanghechen",
6
6
  "url": "https://github.com/guanghechen/"
@@ -39,10 +39,10 @@
39
39
  "test": "cross-env TS_NODE_FILES=true NODE_OPTIONS=--experimental-vm-modules jest --config ../../jest.config.mjs --rootDir ."
40
40
  },
41
41
  "dependencies": {
42
- "@yozora/ast": "^2.0.6",
43
- "@yozora/character": "^2.0.6",
44
- "@yozora/core-tokenizer": "^2.0.6",
45
- "@yozora/tokenizer-footnote-definition": "^2.0.6"
42
+ "@yozora/ast": "^2.1.1",
43
+ "@yozora/character": "^2.1.1",
44
+ "@yozora/core-tokenizer": "^2.1.1",
45
+ "@yozora/tokenizer-footnote-definition": "^2.1.1"
46
46
  },
47
- "gitHead": "a263c5338103824347bac74d437051e9fbb6d791"
47
+ "gitHead": "257a36d8dc079d4ac226405c155b238e7099bcea"
48
48
  }
package/src/types.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import type { Association, FootnoteReference, FootnoteReferenceType } from '@yozora/ast'
2
2
  import type {
3
3
  IBaseInlineTokenizerProps,
4
- IPartialYastInlineToken,
4
+ IPartialInlineToken,
5
+ ITokenDelimiter,
5
6
  ITokenizer,
6
- IYastTokenDelimiter,
7
7
  } from '@yozora/core-tokenizer'
8
8
 
9
9
  export const uniqueName = '@yozora/tokenizer-footnote-reference'
@@ -11,9 +11,9 @@ export const uniqueName = '@yozora/tokenizer-footnote-reference'
11
11
  export type T = FootnoteReferenceType
12
12
  export type INode = FootnoteReference
13
13
 
14
- export interface IToken extends IPartialYastInlineToken<T>, Association {}
14
+ export interface IToken extends IPartialInlineToken<T>, Association {}
15
15
 
16
- export interface IDelimiter extends IYastTokenDelimiter {
16
+ export interface IDelimiter extends ITokenDelimiter {
17
17
  type: 'full'
18
18
  }
19
19