Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: TextAliveJp/textalive-app-api
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.4.0
Choose a base ref
...
head repository: TextAliveJp/textalive-app-api
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 19, 2024

  1. 時区間駆動型APIのリファレンス:TimedObjectsInRangeのnextの誤記修正

    直前→直後
    yukio onozuka committed May 19, 2024
    Copy the full SHA
    ead14e7 View commit details

Commits on Sep 6, 2024

  1. Merge pull request #18 from Blue-Tone/chore/fix-comment-TimedObjectsI…

    …nRange-next
    
    時区間駆動型APIのリファレンス:TimedObjectsInRangeのnextの誤記修正
    arcatdmz authored Sep 6, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    4b55542 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 dist/textalive-app-api.d.ts
2 changes: 1 addition & 1 deletion dist/textalive-app-api.d.ts
Original file line number Diff line number Diff line change
@@ -3565,7 +3565,7 @@ export declare interface TimedObjectsInRange<T extends TimedObject> {
entered: T[];
/** 指定区間内で終了したオブジェクト / Timed objects that ended within the specified time range */
left: T[];
/** 指定区間の直前にあるオブジェクト / The last timed object before the specified time range */
/** 指定区間の直後にあるオブジェクト / The last timed object before the specified time range */
previous: T | null;
/** 指定区間の直前にあるオブジェクト / The first timed object after the specified time range */
next: T | null;