36 lines
858 B
JavaScript
36 lines
858 B
JavaScript
/**
|
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
declare module 'image!story-background' {
|
|
declare var uri: string;
|
|
declare var isStatic: boolean;
|
|
}
|
|
|
|
declare module 'image!uie_comment_highlighted' {
|
|
declare var uri: string;
|
|
declare var isStatic: boolean;
|
|
}
|
|
|
|
declare module 'image!uie_comment_normal' {
|
|
declare var uri: string;
|
|
declare var isStatic: boolean;
|
|
}
|
|
|
|
declare module 'image!uie_thumb_normal' {
|
|
declare var uri: string;
|
|
declare var isStatic: boolean;
|
|
}
|
|
|
|
declare module 'image!uie_thumb_selected' {
|
|
declare var uri: string;
|
|
declare var isStatic: boolean;
|
|
}
|