上映会のし組み作り(#295) (#296)
#295 #295 #295 #295 #295 #295 #295 Co-authored-by: miteruzo <miteruzo@naver.com> Reviewed-on: #296
This commit was merged in pull request #296.
This commit is contained in:
@@ -38,6 +38,37 @@ export type NicoTag = Tag & {
|
||||
category: 'nico'
|
||||
linkedTags: Tag[] }
|
||||
|
||||
export type NiconicoMetadata = {
|
||||
currentTime: number
|
||||
duration: number
|
||||
isVideoMetaDataLoaded: boolean
|
||||
maximumBuffered: number
|
||||
muted: boolean
|
||||
showComment: boolean
|
||||
volume: number }
|
||||
|
||||
export type NiconicoVideoInfo = {
|
||||
title: string
|
||||
videoId: string
|
||||
lengthInSeconds: number
|
||||
thumbnailUrl: string
|
||||
description: string
|
||||
viewCount: number
|
||||
commentCount: number
|
||||
mylistCount: number
|
||||
postedAt: string
|
||||
watchId: number }
|
||||
|
||||
export type NiconicoViewerHandle = {
|
||||
play: () => void
|
||||
pause: () => void
|
||||
seek: (time: number) => void
|
||||
mute: () => void
|
||||
unmute: () => void
|
||||
setVolume: (volume: number) => void
|
||||
showComments: () => void
|
||||
hideComments: () => void }
|
||||
|
||||
export type Post = {
|
||||
id: number
|
||||
url: string
|
||||
@@ -75,6 +106,15 @@ export type Tag = {
|
||||
children?: Tag[]
|
||||
matchedAlias?: string | null }
|
||||
|
||||
export type Theatre = {
|
||||
id: number
|
||||
name: string | null
|
||||
opensAt: string
|
||||
closesAt: string | null
|
||||
createdByUser: { id: number; name: string }
|
||||
createdAt: string
|
||||
updatedAt: string }
|
||||
|
||||
export type User = {
|
||||
id: number
|
||||
name: string | null
|
||||
|
||||
Reference in New Issue
Block a user