Chore: fix typo in annotations.ts (#41978)

propery -> property
This commit is contained in:
Ikko Ashimine 2021-11-20 00:12:15 +09:00 committed by GitHub
parent 91f9284e9d
commit e7ec219291
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ export interface AnnotationQuery<TQuery extends DataQuery = DataQuery> {
// Convert a dataframe to an AnnotationEvent // Convert a dataframe to an AnnotationEvent
mappings?: AnnotationEventMappings; mappings?: AnnotationEventMappings;
// Sadly plugins can set any propery directly on the main object // Sadly plugins can set any property directly on the main object
[key: string]: any; [key: string]: any;
} }